﻿/* Button Style (based on your site theme) */
.MyTheme-btn {
    background-color: #f44336; /* Red/Orange */
    color: white;
    padding: 12px 24px;
    border: none;
    width:120px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .MyTheme-btn:hover {
        background-color: #d32f2f;
    }

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* dim background */
    backdrop-filter: blur(2px);
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    color: #333;
    margin: 15% auto;
    padding: 25px;
    border-radius: 12px;
    width: 400px;
    max-width: 40%;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    text-align: center;
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}
.modal-heading {
    background-color: #ff0000;
    color: #fff !important;
    padding: 10px;
    border-radius: 7px
}

    .modal-content h3 {
        color: #d10000;
        margin-top: 0;
    }

    .modal-content p {
        font-size: 16px;
    }

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #e74c3c;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close-btn:hover {
        color: #c0392b;
    }
